home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / filhos.dxr / 00012.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  438 b   |  25 lines

  1. on exitFrame
  2.   set i to 5
  3.   set yup to 0
  4.   if the mouseCast = 36 then
  5.     go("naveg")
  6.   end if
  7.   repeat while i < 8
  8.     if rollOver(i) then
  9.       set yup to i - 3
  10.       set the visible of sprite yup to 1
  11.       exit repeat
  12.     end if
  13.     set i to i + 1
  14.   end repeat
  15.   set i to 2
  16.   repeat while i < 5
  17.     if i <> yup then
  18.       set the visible of sprite i to 0
  19.     end if
  20.     set i to i + 1
  21.   end repeat
  22.   updateStage()
  23.   go(the frame)
  24. end
  25.